home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Surfer: Getting Started
/
Internet Surfer - Getting Started (Wayzata Technology)(7231)(1995).bin
/
pc
/
mac
/
bonus
/
peter_le
/
finger_1
/
tokens
/
paramete.uni
< prev
next >
Wrap
Text File
|
1991-12-17
|
933b
|
23 lines
unit ParameterDef;
interface
type
parameterRecord = record
fingeredname: stringPtr; { Input - finger name }
param: stringPtr; { Input - parameter following special }
returnvalue: stringPtr; { Output - return string, appeneded to finger output. Don't change ptr! }
fingeroutput: handle; { Input/Output - finger output as its built. }
hlength: longInt; { Input /Output - handle length. }
offset: longInt; { Input/Output - offset from start of handle that finger output is up to }
idle: longInt; { Input - Idle time in seconds }
remoteIP: longInt; { Input - IP number of fingerer }
expandtokens: boolean; { Output - Expand <cr>s and %tokens inserted into the fingeroutput handle }
{ Note: No extra expansion is done for strings. If you have <cr>s in them, put <cr><lf> instead. }
end;
{ procedure Main (var p: parameterRecord); }
implementation
end.